hash-wasm
Hash-WASM is a ⚡lightning fast⚡ hash function library for browsers and Node.js.
It is using hand-tuned WebAssembly binaries to calculate the hash faster than other libraries.
Supported algorithms
Name | Bundle size (gzipped) |
---|
Adler-32 | 3 kB |
Argon2: Argon2d, Argon2i, Argon2id (v1.3) | 11 kB |
bcrypt | 11 kB |
BLAKE2b | 6 kB |
BLAKE2s | 5 kB |
BLAKE3 | 9 kB |
CRC32, CRC32C | 3 kB |
HMAC | - |
MD4 | 4 kB |
MD5 | 4 kB |
PBKDF2 | - |
RIPEMD-160 | 5 kB |
scrypt | 10 kB |
SHA-1 | 5 kB |
SHA-2: SHA-224, SHA-256 | 7 kB |
SHA-2: SHA-384, SHA-512 | 8 kB |
SHA-3: SHA3-224, SHA3-256, SHA3-384, SHA3-512 | 4 kB |
Keccak-224, Keccak-256, Keccak-384, Keccak-512 | 4 kB |
SM3 | 4 kB |
Whirlpool | 6 kB |
xxHash32 | 3 kB |
xxHash64 | 4 kB |
xxHash3 | 7 kB |
xxHash128 | 8 kB |
Features
- A lot faster than other JS / WASM implementations (see benchmarks below)
- It's lightweight. See the table above
- Compiled from heavily optimized algorithms written in C
- Supports all modern browsers, Node.js and Deno
- Supports large data streams
- Supports UTF-8 strings and typed arrays
- Supports chunked input streams
- Modular architecture (the algorithms are compiled into individual WASM binaries)
- WASM modules are bundled as base64 strings (no problems with linking)
- Supports tree shaking (Webpack only bundles the hash algorithms you use)
- Works without Webpack or other bundlers
- Includes TypeScript type definitions
- Works in Web Workers
- Zero dependencies
- Supports concurrent hash calculations with multiple states
- Supports saving and loading the internal state of the hash (segmented hashing and rewinding)
- Unit tests for all algorithms
- 100% open source & transparent build process
- Easy to use, Promise-based API
Installation
npm i hash-wasm
It can also be used directly from HTML (via jsDelivr):
<script src="https://cdn.jsdelivr.net/npm/hash-wasm@4"></script>
<script src="https://cdn.jsdelivr.net/npm/hash-wasm@4/dist/md5.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/hash-wasm@4/dist/hmac.umd.min.js"></script>
Examples
Demo apps
Hash calculator - source code
MD5 file hasher using HTML5 File API
Usage with the shorthand form
It is the easiest and the fastest way to calculate hashes. Use it when the input buffer is already in the memory.
import { md5, sha1, sha512, sha3 } from 'hash-wasm';
async function run() {
console.log('MD5:', await md5('demo'));
const int8Buffer = new Uint8Array([0, 1, 2, 3]);
console.log('SHA1:', await sha1(int8Buffer));
console.log('SHA512:', await sha512(int8Buffer));
const int32Buffer = new Uint32Array([1056, 641]);
console.log('SHA3-256:', await sha3(int32Buffer, 256));
}
run();
* See String encoding pitfalls
** See API reference
Advanced usage with streaming input
createXXXX() functions create new WASM instances with separate states, which can be used to calculate multiple hashes paralelly. They are slower compared to shorthand functions like md5(), which reuse the same WASM instance and state to do multiple calculations. For this reason, the shorthand form is always preferred when the data is already in the memory.
For the best performance, avoid calling createXXXX() functions in loops. When calculating multiple hashes sequentially, the init() function can be used to reset the internal state between runs. It is faster than creating new instances with createXXXX().
import { createSHA1 } from 'hash-wasm';
async function run() {
const sha1 = await createSHA1();
sha1.init();
while (hasMoreData()) {
const chunk = readChunk();
sha1.update(chunk);
}
const hash = sha1.digest('binary');
console.log('SHA1:', hash);
}
run();
* See String encoding pitfalls
** See API reference
Hashing passwords with Argon2
The recommended process for choosing the parameters can be found here: https://tools.ietf.org/html/draft-irtf-cfrg-argon2-04#section-4
import { argon2id, argon2Verify } from 'hash-wasm';
async function run() {
const salt = new Uint8Array(16);
window.crypto.getRandomValues(salt);
const key = await argon2id({
password: 'pass',
salt,
parallelism: 1,
iterations: 256,
memorySize: 512,
hashLength: 32,
outputType: 'encoded',
});
console.log('Derived key:', key);
const isValid = await argon2Verify({
password: 'pass',
hash: key,
});
console.log(isValid ? 'Valid password' : 'Invalid password');
}
run();
* See String encoding pitfalls
** See API reference
Hashing passwords with bcrypt
import { bcrypt, bcryptVerify } from 'hash-wasm';
async function run() {
const salt = new Uint8Array(16);
window.crypto.getRandomValues(salt);
const key = await bcrypt({
password: 'pass',
salt,
costFactor: 11,
outputType: 'encoded',
});
console.log('Derived key:', key);
const isValid = await bcryptVerify({
password: 'pass',
hash: key,
});
console.log(isValid ? 'Valid password' : 'Invalid password');
}
run();
* See String encoding pitfalls
** See API reference
Calculating HMAC
All supported hash functions can be used to calculate HMAC. For the best performance, avoid calling createXXXX() in loops (see Advanced usage with streaming input
section above)
import { createHMAC, createSHA3 } from 'hash-wasm';
async function run() {
const hashFunc = createSHA3(224);
const hmac = await createHMAC(hashFunc, 'key');
const fruits = ['apple', 'raspberry', 'watermelon'];
console.log('Input:', fruits);
const codes = fruits.map(data => {
hmac.init();
hmac.update(data);
return hmac.digest();
});
console.log('HMAC:', codes);
}
run();
* See String encoding pitfalls
** See API reference
Calculating PBKDF2
All supported hash functions can be used to calculate PBKDF2. For the best performance, avoid calling createXXXX() in loops (see Advanced usage with streaming input
section above)
import { pbkdf2, createSHA1 } from 'hash-wasm';
async function run() {
const salt = new Uint8Array(16);
window.crypto.getRandomValues(salt);
const key = await pbkdf2({
password: 'password',
salt,
iterations: 1000,
hashLength: 32,
hashFunction: createSHA1(),
outputType: 'hex',
});
console.log('Derived key:', key);
}
run();
* See String encoding pitfalls
** See API reference
String encoding pitfalls
You should be aware that there may be multiple UTF-8 representations of a given string:
'\u00fc'
'u\u0308'
'\u00fc' === 'u\u0308'
'ü' === 'ü'
All algorithms defined in this library depend on the binary representation of the input string. Thus, it's highly recommended to normalize your strings before passing it to hash-wasm. You can use the normalize()
built-in String function to archive this:
'\u00fc'.normalize() === 'u\u0308'.normalize()
const te = new TextEncoder();
te.encode('u\u0308');
te.encode('\u00fc');
te.encode('u\u0308'.normalize('NFKC'));
te.encode('\u00fc'.normalize('NFKC'));
You can read more about this issue here: https://en.wikipedia.org/wiki/Unicode_equivalence
Resumable hashing
You can save the current internal state of the hash using the .save()
function. This state may be written to disk or stored elsewhere in memory.
You can then use the .load(state)
function to reload that state into a new instance of the hash, or back into the same instance.
This allows you to span the work of hashing a file across multiple processes (e.g. in environments with limited execution times like AWS Lambda, where large jobs need to be split across multiple invocations), or rewind the hash to an earlier point in the stream. For example, the first process could:
const md5 = await createMD5();
md5.init();
md5.update("Hello, ");
const state = md5.save();
const md5 = await createMD5();
md5.load(state);
md5.update("world!");
console.log(md5.digest());
Note that both the saving and loading processes must be running compatible versions of the hash function (i.e. the hash function hasn't changed between the versions of hash-wasm used in the saving and loading processes). If the saved state is incompatible, load()
will throw an exception.
The saved state can contain information about the input, including plaintext input bytes, so from a security perspective it must be treated with the same care as the input data itself.
Browser support
Chrome | Safari | Firefox | Edge | IE | Node.js | Deno |
---|
57+ | 11+ | 53+ | 16+ | Not supported | 8+ | 1+ |
Benchmark
You can make your own measurements here: link
Two scenarios were measured:
- throughput with the short form (input size = 32 bytes)
- throughput with the short form (input size = 1MB)
Results:
MD5 | throughput (32 bytes) | throughput (1MB) |
---|
hash-wasm 4.4.1 | 57.43 MB/s | 596.64 MB/s |
spark-md5 3.0.1 (from npm) | 28.08 MB/s (2.0x slower) | 110.12 MB/s (5.4x slower) |
md5-wasm 2.0.0 (from npm) | 16.49 MB/s (3.4x slower) | 74.43 MB/s (8.0x slower) |
crypto-js 4.0.0 (from npm) | 3.80 MB/s (15x slower) | 26.70 MB/s (22x slower) |
node-forge 0.10.0 (from npm) | 9.28 MB/s (6.2x slower) | 12.27 MB/s (49x slower) |
md5 2.3.0 (from npm) | 7.66 MB/s (7.5x slower) | 11.42 MB/s (52x slower) |
SHA1 | throughput (32 bytes) | throughput (1MB) |
---|
hash-wasm 4.4.1 | 47.97 MB/s | 649.13 MB/s |
jsSHA 3.2.0 (from npm) | 6.15 MB/s (7.8x slower) | 46.13 MB/s (14x slower) |
crypto-js 4.0.0 (from npm) | 4.10 MB/s (12x slower) | 40.36 MB/s (16x slower) |
sha1 1.1.1 (from npm) | 6.86 MB/s (7.0x slower) | 12.46 MB/s (52x slower) |
node-forge 0.10.0 (from npm) | 8.71 MB/s (5.5x slower) | 12.86 MB/s (50x slower) |
SHA256 | throughput (32 bytes) | throughput (1MB) |
---|
hash-wasm 4.4.1 | 35.67 MB/s | 254.40 MB/s |
sha256-wasm 2.1.2 (from npm) | 17.83 MB/s (2x slower) | 164.13 MB/s (1.5x slower) |
jsSHA 3.2.0 (from npm) | 5.57 MB/s (6.4x slower) | 35.81 MB/s (7.1x slower) |
crypto-js 4.0.0 (from npm) | 3.51 MB/s (10x slower) | 36.48 MB/s (7x slower) |
node-forge 0.10.0 (from npm) | 6.81 MB/s (5.2x slower) | 11.91 MB/s (21x slower) |
SHA3-512 | throughput (32 bytes) | throughput (1MB) |
---|
hash-wasm 4.4.1 | 22.91 MB/s | 177.16 MB/s |
sha3-wasm 1.0.0 (from npm) | 7.16 MB/s (3.2x slower) | 74.75 MB/s (2.4x slower) |
sha3 2.1.4 (from npm) | 2.00 MB/s (11x slower) | 6.48 MB/s (27x slower) |
jsSHA 3.2.0 (from npm) | 0.93 MB/s (24x slower) | 2.09 MB/s (85x slower) |
XXHash64 | throughput (32 bytes) | throughput (1MB) |
---|
hash-wasm 4.4.1 | 88.33 MB/s | 12 012.74 MB/s |
xxhash-wasm 0.4.1 (from npm) | 28.44 MB/s (3.1x slower) | 11 296.84 MB/s |
xxhashjs 0.2.2 (from npm) | 0.37 MB/s (239x slower) | 17.95 MB/s (669x slower) |
PBKDF2-SHA512 - 1000 iterations | operations per second (16 bytes) |
---|
hash-wasm 4.4.1 | 348 ops |
pbkdf2 3.1.1 (from npm) | 55 ops (6.3x slower) |
crypto-js 4.0.0 (from npm) | 13 ops (27x slower) |
Argon2id (m=512, t=8, p=1) | operations per second (16 bytes) |
---|
hash-wasm 4.4.1 | 256 ops |
argon2-browser 1.15.3 (from npm) | 104 ops (2.5x slower) |
argon2-wasm 0.9.0 (from npm) | 101 ops (2.5x slower) |
argon2-wasm-pro 1.1.0 (from npm) | 100 ops (2.5x slower) |
* These measurements were made with Chrome v89
on a Kaby Lake desktop CPU.
API
type IDataType = string | Buffer | Uint8Array | Uint16Array | Uint32Array;
adler32(data: IDataType): Promise<string>
blake2b(data: IDataType, bits?: number, key?: IDataType): Promise<string>
blake2s(data: IDataType, bits?: number, key?: IDataType): Promise<string>
blake3(data: IDataType, bits?: number, key?: IDataType): Promise<string>
crc32(data: IDataType): Promise<string>
crc32c(data: IDataType): Promise<string>
keccak(data: IDataType, bits?: 224 | 256 | 384 | 512): Promise<string>
md4(data: IDataType): Promise<string>
md5(data: IDataType): Promise<string>
ripemd160(data: IDataType): Promise<string>
sha1(data: IDataType): Promise<string>
sha224(data: IDataType): Promise<string>
sha256(data: IDataType): Promise<string>
sha3(data: IDataType, bits?: 224 | 256 | 384 | 512): Promise<string>
sha384(data: IDataType): Promise<string>
sha512(data: IDataType): Promise<string>
sm3(data: IDataType): Promise<string>
whirlpool(data: IDataType): Promise<string>
xxhash32(data: IDataType, seed?: number): Promise<string>
xxhash64(data: IDataType, seedLow?: number, seedHigh?: number): Promise<string>
xxhash3(data: IDataType, seedLow?: number, seedHigh?: number): Promise<string>
xxhash128(data: IDataType, seedLow?: number, seedHigh?: number): Promise<string>
interface IHasher {
init: () => IHasher;
update: (data: IDataType) => IHasher;
digest: (outputType: 'hex' | 'binary') => string | Uint8Array;
save: () => Uint8Array;
load: (state: Uint8Array) => IHasher;
blockSize: number;
digestSize: number;
}
createAdler32(): Promise<IHasher>
createBLAKE2b(bits?: number, key?: IDataType): Promise<IHasher>
createBLAKE2s(bits?: number, key?: IDataType): Promise<IHasher>
createBLAKE3(bits?: number, key?: IDataType): Promise<IHasher>
createCRC32(): Promise<IHasher>
createCRC32C(): Promise<IHasher>
createKeccak(bits?: 224 | 256 | 384 | 512): Promise<IHasher>
createMD4(): Promise<IHasher>
createMD5(): Promise<IHasher>
createRIPEMD160(): Promise<IHasher>
createSHA1(): Promise<IHasher>
createSHA224(): Promise<IHasher>
createSHA256(): Promise<IHasher>
createSHA3(bits?: 224 | 256 | 384 | 512): Promise<IHasher>
createSHA384(): Promise<IHasher>
createSHA512(): Promise<IHasher>
createSM3(): Promise<IHasher>
createWhirlpool(): Promise<IHasher>
createXXHash32(seed: number): Promise<IHasher>
createXXHash64(seedLow: number, seedHigh: number): Promise<IHasher>
createXXHash3(seedLow: number, seedHigh: number): Promise<IHasher>
createXXHash128(seedLow: number, seedHigh: number): Promise<IHasher>
createHMAC(hashFunction: Promise<IHasher>, key: IDataType): Promise<IHasher>
pbkdf2({
password: IDataType,
salt: IDataType,
iterations: number,
hashLength: number,
hashFunction: Promise<IHasher>,
outputType?: 'hex' | 'binary',
}): Promise<string | Uint8Array>
scrypt({
password: IDataType,
salt: IDataType,
costFactor: number,
blockSize: number,
parallelism: number,
hashLength: number,
outputType?: 'hex' | 'binary',
}): Promise<string | Uint8Array>
interface IArgon2Options {
password: IDataType;
salt: IDataType;
secret?: IDataType;
iterations: number;
parallelism: number;
memorySize: number;
hashLength: number;
outputType?: 'hex' | 'binary' | 'encoded';
}
argon2i(options: IArgon2Options): Promise<string | Uint8Array>
argon2d(options: IArgon2Options): Promise<string | Uint8Array>
argon2id(options: IArgon2Options): Promise<string | Uint8Array>
argon2Verify({
password: IDataType,
secret?: IDataType,
hash: string,
}): Promise<boolean>
bcrypt({
password: IDataType,
salt: IDataType,
costFactor: number,
outputType?: 'hex' | 'binary' | 'encoded',
}): Promise<string | Uint8Array>
bcryptVerify({
password: IDataType,
hash: string,
}): Promise<boolean>
Future plans
- Add more well-known algorithms
- Write a polyfill which keeps bundle sizes low and enables running binaries containing newer WASM instructions
- Use WebAssembly Bulk Memory Operations
- Use WebAssembly SIMD instructions (expecting a 10-20% performance increase)
- Enable multithreading where it's possible (like at Argon2)